Skip to main content

All Questions

0votes
0answers
29views

finding overlaid text in html from a website

I'm using Selenium to browse sites and locate text overlaid in html on an image. But I have problems, how can I correctly identify the superimposed text on a web page in a unique way, without taking ...
Christelle Kpairi's user avatar
0votes
0answers
36views

checking if a string is on a webpage - Selenium Webdriver retrieves static HTML code but not the Elements full code (and the string contents)

I'm trying to check if a specific string element appears on a URL webpage. My webdriver retrieves the HTML source code with no issues: URL = "******" driver = webdriver.Chrome() driver....
user17312322's user avatar
0votes
1answer
65views

"Element not interactable" for a ng-select drop down

I am trying to iterate through the drop down button on a website using the following code: from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common....
Nguyễn Văn Chiến's user avatar
0votes
1answer
64views

How to "find" this Button with Selenium?

i´d like to click this button in my webdriver window with selenium. Most of the time i am using find_element_by_id, but how can I locate this one? <button role="button" data-testid="...
Bitschubser's user avatar
1vote
1answer
150views

Stuck with getting data from Moz Bar using selenium-python

I want to get spam score from Moz bar using Selenium WebDriver, I tried many ways using XPath, class, and tag name but I couldn't get data. Could you please help?: from selenium.webdriver.common.by ...
SEO Master's user avatar
0votes
1answer
58views

How to perform web scraping for TOSS SSC results using python and selenium

Web scraping with student roll numbers to get TOSS SSC results is useful for collecting student results by entering hall ticket or admission number. what are the possible solutions. please share.
Pasha M.'s user avatar
0votes
0answers
129views

nosuchelement:Unable to locate element: {"method":"xpath","selector":"//body/div[@id='root']/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/div[4]"}

can anyone help there is no such identifier how can i click this button this error arises when i use this code driver.findElement(By.xpath("//body/div[@id='root']/div[1]/div[1]/div[1]/div[1]/div[1]...
Shahzaib Iqbal's user avatar
1vote
1answer
88views

moving onto the next page using selenium by python

url_main = "https://comic.naver.com/webtoon/detail.nhn?titleId=131385&no=292" This webpage has pagination for comments in the end. When I inspected the page, the buttons were compiled ...
lee's user avatar
  • 65
1vote
1answer
148views

How to select a choice from a list of choices in Selenium-Python?

I am trying to select an option from the webpage below using Selenium-Python. I inspected the element and got xpath and css selector. However, no matter what I tried, I still couldn't find the element ...
user11809703's user avatar
1vote
1answer
32views

Is there a way to get a list of IDs that are currently pinned on a website using Selenium?

I am creating a webscraper that needs to open up multiple tabs of items whose icons are filled. For example each page I need to open has div class="course-selector-item-pinned" in it's ...
Chester Mew's user avatar
0votes
2answers
2kviews

Trouble using selenium to click an item by partial link text

So I made a script a few years back that would use selenium to navigate a store, locate items by their name, then select them. I was trying to re-make it looking at my old code but it isn't working ...
GeratTheGreat's user avatar
1vote
1answer
54views

How to avoid a chrome caching search results by css selectors?

Steps which cause the problem: Search for some element in the page via Chrome Dev Tools using css selector — it has results. Remove this element (in any way) (NOT CLOSING search by css selector panel)....
egorgrushin's user avatar
0votes
1answer
640views

Element is not clickable (the button is blocking by other element)

I'm trying to click on this button: browser.find_element_by_id('btnSearch') But this button is blocking by this div tag: <div id="actionSearch" class="row pull-right"> How do I go around to ...
Blue Moon's user avatar
0votes
0answers
68views

selenium send_keys('123456') results in randomized order

Assume the number is: 1111 2222 3333 4444 I tried to use driver.send_keys(number) to fill a field of number. However, it seems like the website is doing some randomization of the number entered. The ...
botieeee's user avatar
0votes
1answer
287views

how to use selenium to click 'checkout' button?

The html is as followed: enter image description here I have tried multiple methods like driver.find_element_by_css_selector and others. None worked.please help
Edison Hua's user avatar

close